home *** CD-ROM | disk | FTP | other *** search
/ MaxiMac 2000 December / MaxiMac 109.iso / Macworld on CD n°109 / Applications (Mac OS X PB) / MacOSX ScreenSavers / Source Code / Icon / IconImage.h < prev    next >
Encoding:
Text File  |  1999-09-17  |  409 b   |  23 lines  |  [????/????]

  1. /* IconImage.h created by epeyton on Fri 17-Sep-1999 */
  2.  
  3. #import <AppKit/AppKit.h>
  4. #import "IconSaver.h"
  5.  
  6. @interface IconImage : NSObject
  7. {
  8.     NSImage *image;
  9.     NSImage *blackImage;
  10.     NSPoint imagePoint;
  11.     int life;
  12.     int counter;
  13.     id parent;
  14.     float fade;
  15.     float blackFade;
  16. }
  17.  
  18. - (id)initWithPath:(NSString *)imagePath inRect:(NSRect)rect parent:(id)passedParent;
  19.  
  20. - (NSRect)imageRect;
  21.  
  22. @end
  23.